C1.iOS.DataCollection Assembly / C1.iOS.DataCollection Namespace / C1TableViewSource<T> Class / GetCell Method
Table view requesting the cell.
Location of the row where the cell will be displayed.

In This Topic
GetCell Method (C1TableViewSource<T>)
In This Topic
Called by the table view to get populate the row at indexPath with a cell view.
Syntax
'Declaration
 
Public Overrides NotOverridable Function GetCell( _
   ByVal tableView As UIKit.UITableView, _
   ByVal indexPath As Foundation.NSIndexPath _
) As UIKit.UITableViewCell
 

Parameters

tableView
Table view requesting the cell.
indexPath
Location of the row where the cell will be displayed.

Return Value

An object that inherits from UIKit.UITableViewCell that the table can use for the specified row. Do not return null or an assertion will be raised.
See Also